home *** CD-ROM | disk | FTP | other *** search
/ USGS: National Coal Resou…s & Great Plains Regions / USGS National Coal Resource Assessment 1999 - Northern Rocky Mountains & Great Plains Regions - Disc 2.iso / PROGRAM / LIB32 / avexec32.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-07  |  415 b   |  16 lines

  1. /*
  2.  *  The AVExec function will turn the Avenue source code 
  3.  *  contained in source into an Avenue script, and execute
  4.  *  the script. If there are any errors, AVExec returns NULL.
  5.  *  Otherwise, AVExec turns the resultant object into a
  6.  *  string and returns it. Do NOT modify the resultant string.
  7.  */
  8.  
  9. #if defined (__cplusplus)
  10. extern "C" {
  11. #endif
  12. char *AVExec(char* source);
  13. #if defined (__cplusplus)
  14. }
  15. #endif
  16.